home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CHARTP10.ARJ / AGENDA.CPP next >
C/C++ Source or Header  |  1992-01-26  |  313b  |  16 lines

  1.  
  2. // Copyright 1992, David Perelman-Hall & Jamshid Afshar
  3.  
  4. #include "chart.h"
  5. #include "agenda.h"
  6.  
  7. void Agenda::add( const Edge& edge, const Chart& chart )
  8. {
  9.    if ( !isIn(edge) && !chart.isIn(edge) ) {
  10.       cout << "Adding edge to agenda: " << edge << "\n";
  11.       _edges.push( edge );
  12.       }
  13. }
  14.  
  15.  
  16.